-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Conversation
Not sure how to do any logical mapping here, but happy to learn. We could use a separate package.json file inside the src folder for production dependencies. That's how brackets-electron does it and that's how electron authors recommend electron projects to be done. |
The other idea I had in mind was exactly putting a package.json inside the src folder. |
One can use relative mapping with |
@@ -323,7 +323,7 @@ module.exports = function (grunt) { | |||
}); | |||
|
|||
// task: install | |||
grunt.registerTask('install', ['write-config', 'less', 'npm-install-extensions']); | |||
grunt.registerTask('install', ['write-config', 'less', 'copy-browser-dependencies', 'npm-install-extensions']); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fast note: the script is referenced here as copy-browser-dependencies
but is actually named move-browser-dependencies
.
Closing in favor of #12972 |
PR for #12937